home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / DSTORM.ASP < prev    next >
Text File  |  1988-01-01  |  2KB  |  39 lines

  1. ;*************************************************************************
  2. ;* DSTORM.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                     *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto the DATASTORM BBS.       *
  5. ;*                                                                       *
  6. ;*************************************************************************
  7.  
  8. CLEAR
  9. LOCATE 0 0
  10. BOX 0 0 4 36 14
  11. ATSAY 2 2 14 "Logging onto the DATASTORM BBS..."
  12. LOCATE 6 0
  13.  
  14. EMULATE ANSI                ;  Use ANSI-BBS emulation for ANSI graphics
  15. IF NOT LINKED
  16.    DIAL "1"                 ;  set to your dial dir entry for DATASTORM
  17. ENDIF
  18.  
  19. TRANSMIT "^M"               ;  Transmit a Carriage return
  20.  
  21. WAITFOR "name?"             ;  Wait for first name prompt...
  22. PAUSE 1                     ;  and wait a second...
  23. TRANSMIT "John^M"           ;  Send first name
  24.  
  25. WAITFOR "name?"             ;  Wait for last name prompt...
  26. PAUSE 1                     ;  and wait a second...
  27. TRANSMIT "Doe^M"            ;  Send last name
  28.  
  29. WAITFOR "correct?"          ;  Wait for verification prompt...
  30. PAUSE 1                     ;  wait a second...
  31. TRANSMIT "Y"                ;  Send "YES"
  32.  
  33. WAITFOR "Password:"         ;  Wait until board asks for my password
  34. PAUSE 1                     ;  wait a second longer...
  35. TRANSMIT "demo^M"           ;  Send my password
  36.  
  37. ALARM 2                     ;  Inform user logon is complete
  38.  
  39.